home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / meschach / !Meschach / c / zgivens < prev    next >
Text File  |  1994-03-08  |  5KB  |  181 lines

  1.  
  2. /**************************************************************************
  3. **
  4. ** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
  5. **
  6. **                 Meschach Library
  7. ** 
  8. ** This Meschach Library is provided "as is" without any express 
  9. ** or implied warranty of any kind with respect to this software. 
  10. ** In particular the authors shall not be liable for any direct, 
  11. ** indirect, special, incidental or consequential damages arising 
  12. ** in any way from use of the software.
  13. ** 
  14. ** Everyone is granted permission to copy, modify and redistribute this
  15. ** Meschach Library, provided:
  16. **  1.  All copies contain this copyright notice.
  17. **  2.  All modified copies shall carry a notice stating who
  18. **      made the last modification and the date of such modification.
  19. **  3.  No charge is made for this software or works derived from it.  
  20. **      This clause shall not be construed as constraining other software
  21. **      distributed on the same medium as this software, nor is a
  22. **      distribution fee considered a charge.
  23. **
  24. ***************************************************************************/
  25.  
  26.  
  27. /*
  28.     Givens operations file. Contains routines for calculating and
  29.     applying givens rotations for/to vectors and also to matrices by
  30.     row and by column.
  31.  
  32.     Complex version.
  33. */
  34.  
  35. static    char    rcsid[] = "$Id: ";
  36.  
  37. #include    <stdio.h>
  38. #include    <math.h>
  39. #include    "zmatrix.h"
  40. #include        "zmatrix2.h"
  41.  
  42. /*
  43.     (Complex) Givens rotation matrix:
  44.         [ c   -s ]
  45.         [ s*   c ]
  46.     Note that c is real and s is complex
  47. */
  48.  
  49. /* zgivens -- returns c,s parameters for Givens rotation to
  50.         eliminate y in the **column** vector [ x y ] */
  51. void    zgivens(x,y,c,s)
  52. complex    x,y,*s;
  53. Real    *c;
  54. {
  55.     Real    inv_norm, norm;
  56.     complex    tmp;
  57.  
  58.     /* this is a safe way of computing sqrt(|x|^2+|y|^2) */
  59.     tmp.re = zabs(x);    tmp.im = zabs(y);
  60.     norm = zabs(tmp);
  61.  
  62.     if ( norm == 0.0 )
  63.     {    *c = 1.0;    s->re = s->im = 0.0;    } /* identity */
  64.     else
  65.     {
  66.         inv_norm = 1.0 / tmp.re;    /* inv_norm = 1/|x| */
  67.         x.re *= inv_norm;
  68.         x.im *= inv_norm;        /* normalise x */
  69.         inv_norm = 1.0/norm;        /* inv_norm = 1/||[x,y]||2 */
  70.         *c = tmp.re * inv_norm;
  71.         /* now compute - conj(normalised x).y/||[x,y]||2 */
  72.         s->re = - inv_norm*(x.re*y.re + x.im*y.im);
  73.         s->im =   inv_norm*(x.re*y.im - x.im*y.re);
  74.     }
  75. }
  76.  
  77. /* rot_zvec -- apply Givens rotation to x's i & k components */
  78. ZVEC    *rot_zvec(x,i,k,c,s,out)
  79. ZVEC    *x,*out;
  80. int    i,k;
  81. double    c;
  82. complex    s;
  83. {
  84.  
  85.     complex    temp1, temp2;
  86.  
  87.     if ( x==ZVNULL )
  88.         error(E_NULL,"rot_zvec");
  89.     if ( i < 0 || i >= x->dim || k < 0 || k >= x->dim )
  90.         error(E_RANGE,"rot_zvec");
  91.     if ( x != out )
  92.         out = zv_copy(x,out);
  93.  
  94.     /* temp1 = c*out->ve[i] - s*out->ve[k]; */
  95.     temp1.re = c*out->ve[i].re
  96.         - s.re*out->ve[k].re + s.im*out->ve[k].im;
  97.     temp1.im = c*out->ve[i].im
  98.         - s.re*out->ve[k].im - s.im*out->ve[k].re;
  99.  
  100.     /* temp2 = c*out->ve[k] + zconj(s)*out->ve[i]; */
  101.     temp2.re = c*out->ve[k].re
  102.         + s.re*out->ve[i].re + s.im*out->ve[i].im;
  103.     temp2.im = c*out->ve[k].im
  104.         + s.re*out->ve[i].im - s.im*out->ve[i].re;
  105.  
  106.     out->ve[i] = temp1;
  107.     out->ve[k] = temp2;
  108.  
  109.     return (out);
  110. }
  111.  
  112. /* zrot_rows -- premultiply mat by givens rotation described by c,s */
  113. ZMAT    *zrot_rows(mat,i,k,c,s,out)
  114. ZMAT    *mat,*out;
  115. int    i,k;
  116. double    c;
  117. complex    s;
  118. {
  119.     u_int    j;
  120.     complex    temp1, temp2;
  121.  
  122.     if ( mat==ZMNULL )
  123.         error(E_NULL,"zrot_rows");
  124.     if ( i < 0 || i >= mat->m || k < 0 || k >= mat->m )
  125.         error(E_RANGE,"zrot_rows");
  126.     out = zm_copy(mat,out);
  127.  
  128.     /* temp1 = c*out->me[i][j] - s*out->me[k][j]; */
  129.     for ( j=0; j<mat->n; j++ )
  130.     {
  131.         /* temp1 = c*out->me[i][j] - s*out->me[k][j]; */
  132.         temp1.re = c*out->me[i][j].re
  133.         - s.re*out->me[k][j].re + s.im*out->me[k][j].im;
  134.         temp1.im = c*out->me[i][j].im
  135.         - s.re*out->me[k][j].im - s.im*out->me[k][j].re;
  136.         
  137.         /* temp2 = c*out->me[k][j] + conj(s)*out->me[i][j]; */
  138.         temp2.re = c*out->me[k][j].re
  139.         + s.re*out->me[i][j].re + s.im*out->me[i][j].im;
  140.         temp2.im = c*out->me[k][j].im
  141.         + s.re*out->me[i][j].im - s.im*out->me[i][j].re;
  142.         
  143.         out->me[i][j] = temp1;
  144.         out->me[k][j] = temp2;
  145.     }
  146.  
  147.     return (out);
  148. }
  149.  
  150. /* zrot_cols -- postmultiply mat by adjoint Givens rotation described by c,s */
  151. ZMAT    *zrot_cols(mat,i,k,c,s,out)
  152. ZMAT    *mat,*out;
  153. int    i,k;
  154. double    c;
  155. complex    s;
  156. {
  157.     u_int    j;
  158.     complex    x, y;
  159.  
  160.     if ( mat==ZMNULL )
  161.         error(E_NULL,"zrot_cols");
  162.     if ( i < 0 || i >= mat->n || k < 0 || k >= mat->n )
  163.         error(E_RANGE,"zrot_cols");
  164.     out = zm_copy(mat,out);
  165.  
  166.     for ( j=0; j<mat->m; j++ )
  167.     {
  168.         x = out->me[j][i];    y = out->me[j][k];
  169.         /* out->me[j][i] = c*x - conj(s)*y; */
  170.         out->me[j][i].re = c*x.re - s.re*y.re - s.im*y.im;
  171.         out->me[j][i].im = c*x.im - s.re*y.im + s.im*y.re;
  172.         
  173.         /* out->me[j][k] = c*y + s*x; */
  174.         out->me[j][k].re = c*y.re + s.re*x.re - s.im*x.im;
  175.         out->me[j][k].im = c*y.im + s.re*x.im + s.im*x.re;
  176.     }
  177.  
  178.     return (out);
  179. }
  180.  
  181.